-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
deps-dev: Bump @playwright/test
to ~1.53.2
#16803
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Conversation
@@ -4,10 +4,4 @@ window.Sentry = Sentry; | |||
|
|||
Sentry.init({ | |||
dsn: 'https://public@dsn.ingest.sentry.io/1337', | |||
transportOptions: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
these are no longer needed because this was fixed in a playwright update
da3fafb
to
ddc5a2b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Missing Sentry Test Utils in SolidStart E2E Tests
The @sentry-internal/test-utils
dependency was accidentally removed from the devDependencies
of four SolidStart e2e test applications (solidstart-top-level-import, solidstart, solidstart-dynamic-import, solidstart-spa) during a Playwright version upgrade. This dependency is crucial for test utilities, and its removal, inconsistent with other similar test applications, will likely break tests.
dev-packages/e2e-tests/test-applications/solidstart-top-level-import/package.json#L16-L19
sentry-javascript/dev-packages/e2e-tests/test-applications/solidstart-top-level-import/package.json
Lines 16 to 19 in ddc5a2b
}, | |
"devDependencies": { | |
"@playwright/test": "~1.53.2", | |
"@solidjs/meta": "^0.29.4", |
dev-packages/e2e-tests/test-applications/solidstart/package.json#L16-L19
sentry-javascript/dev-packages/e2e-tests/test-applications/solidstart/package.json
Lines 16 to 19 in ddc5a2b
}, | |
"devDependencies": { | |
"@playwright/test": "~1.53.2", | |
"@solidjs/meta": "^0.29.4", |
dev-packages/e2e-tests/test-applications/solidstart-dynamic-import/package.json#L16-L19
sentry-javascript/dev-packages/e2e-tests/test-applications/solidstart-dynamic-import/package.json
Lines 16 to 19 in ddc5a2b
}, | |
"devDependencies": { | |
"@playwright/test": "~1.53.2", | |
"@solidjs/meta": "^0.29.4", |
dev-packages/e2e-tests/test-applications/solidstart-spa/package.json#L16-L19
sentry-javascript/dev-packages/e2e-tests/test-applications/solidstart-spa/package.json
Lines 16 to 19 in ddc5a2b
}, | |
"devDependencies": { | |
"@playwright/test": "~1.53.2", | |
"@solidjs/meta": "^0.29.4", |
Was this report helpful? Give feedback by reacting with 👍 or 👎
Updates this so we get newest browsers etc. Also aligns version everywhere again.